home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 11 / Mac Magazin and MacEasy Magazine CD - Issue 11.iso / Sharewarebibliothek / Entwickler / appe Windows 2.0 / AppeWin for SC7 / patches.h < prev    next >
Text File  |  1995-07-04  |  1KB  |  26 lines

  1. // File "patches.h" - 
  2.  
  3. #ifndef ____PATCHES_HEADER_____
  4. #define ____PATCHES_HEADER_____
  5.  
  6. // * **************************************************************************** * //
  7. // * **************************************************************************** * //
  8.  
  9. // Setup calling information for the routines we need
  10. typedef pascal void (*ExitToShellProcPtr)(void);
  11. typedef pascal WindowPtr (*NewWindowProcPtr)(Ptr wStorage, Rect *bounds, StringPtr title,
  12.         Boolean vis, short procID, WindowPtr behind, Boolean close, long refCon);
  13.  
  14. // * **************************************************************************** * //
  15. // * **************************************************************************** * //
  16. // Function Prototypes
  17.  
  18. void PatchExitToShell(void);
  19. pascal void MyExitToShell(void);
  20.  
  21. void PatchNewWindow(void);
  22. pascal WindowPtr MyNewWindow(Ptr wStorage, Rect *bounds, StringPtr title, 
  23.         Boolean vis, short procID, WindowPtr behind, Boolean close, long refCon);
  24.  
  25. #endif  ____PATCHES_HEADER_____
  26.